home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / rsxwdk2s.zip / RSXWDK / LIBSRC / KEYBOARD / KEYBO004.C next >
C/C++ Source or Header  |  1994-12-19  |  339b  |  17 lines

  1. #define STRICT
  2. #include <windows.h>
  3. #include <sys/rsxw32.h>
  4.  
  5. short WINAPI ToAscii (UINT par1, UINT par2, BYTE FAR* par3, DWORD FAR* par4, UINT par5)
  6. {
  7.     STACKWORDS(1+1+2+2+1);
  8.  
  9.     PUSH_WORD(par1);
  10.     PUSH_WORD(par2);
  11.     PUSH_LPSTR(par3);
  12.     PUSH_LPSTR(par4);
  13.     PUSH_WORD(par5);
  14.     return WINCALL(  4,KEYBOARD);
  15. }
  16.  
  17.